home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic Source Code / Visual Basic Source Code.iso / vbsource / blkspell / vb_examp.frm < prev    next >
Text File  |  1998-10-16  |  2KB  |  59 lines

  1. VERSION 4.00
  2. Begin VB.Form Form1 
  3.    Caption         =   "Form1"
  4.    ClientHeight    =   3450
  5.    ClientLeft      =   1470
  6.    ClientTop       =   1515
  7.    ClientWidth     =   2985
  8.    Height          =   3855
  9.    Left            =   1410
  10.    LinkTopic       =   "Form1"
  11.    ScaleHeight     =   3450
  12.    ScaleWidth      =   2985
  13.    Top             =   1170
  14.    Width           =   3105
  15.    Begin VB.CommandButton Command2 
  16.       Caption         =   "Show License"
  17.       Height          =   375
  18.       Left            =   480
  19.       TabIndex        =   2
  20.       Top             =   2880
  21.       Width           =   1935
  22.    End
  23.    Begin VB.CommandButton Command1 
  24.       Caption         =   "SpellCheck"
  25.       Height          =   375
  26.       Left            =   480
  27.       TabIndex        =   1
  28.       Top             =   2400
  29.       Width           =   1935
  30.    End
  31.    Begin VB.TextBox Text1 
  32.       Height          =   1935
  33.       Left            =   240
  34.       MultiLine       =   -1  'True
  35.       ScrollBars      =   2  'Vertical
  36.       TabIndex        =   0
  37.       Text            =   "VB_EXA~1.frx":0000
  38.       Top             =   240
  39.       Width           =   2535
  40.    End
  41. End
  42. Attribute VB_Name = "Form1"
  43. Attribute VB_Creatable = False
  44. Attribute VB_Exposed = False
  45. Private Declare Sub SpellCheck Lib "..\release\btdict.dll" (ByVal hWnd As Long)
  46. Private Declare Sub ShowLicense Lib "..\release\btdict.dll" ()
  47.  
  48.  
  49. Private Sub Command1_Click()
  50. SpellCheck (Text1.hWnd)
  51. End Sub
  52.  
  53.  
  54. Private Sub Command2_Click()
  55. ShowLicense
  56. End Sub
  57.  
  58.  
  59.